home *** CD-ROM | disk | FTP | other *** search
- :pckey.scr
-
- load -
-
- if memory 1 = 0 goto welcome
-
- cursor 12 7
- print 'Press C if you wish to continue with your last lesson.
- cursor 10 9
- print 'Otherwise press the SPACE BAR to go to the TUTORIAL MENU.
-
- :wait_for_c
- wait -
- if key = 32 goto menu
- if key ! C if key ! c goto wait_for_c
- if memory 1 > 6 goto ex_menu_cont
-
- clear
- keyboard
-
- if memory 1 = 1 goto intro
- if memory 1 = 2 goto hkl
- if memory 1 = 3 goto ral
- if memory 1 = 4 goto rbl
- if memory 1 = 5 goto akl
- if memory 1 = 6 goto skl
-
- :welcome
- script - welcome
-
- :restart
- start 1
- memory 1 = 0
-
- :menu
-
- speed 0
-
- clear
- cursor 26 4
- print 'This is the TUTORIAL MENU.
- cursor 4 7
- print 'You will return here if you press ESC whilst doing any of the lessons.
-
- cursor 14 10
- print 'Press : 1 to start with the introduction.
- cursor 4 12
- print 'Otherwise press : 2 for the 'Home keys' lesson.
- cursor 22 13
- print '3 for the 'Row above' lesson.
- cursor 22 14
- print '4 for the 'Row below' lesson.
- cursor 22 15
- print '5 for the 'ENTER the carriage return' lesson.
- cursor 22 16
- print '6 for the 'Symbol row' lesson.
- cursor 22 17
- print '7 for the exercises menu.
-
- cursor 22 19
- print '9 to exit now and save your progress.
-
- cursor 22 20
- print '0 to reset your score.
-
- cursor 6 24
- print 'Remember, pressing ESC from here will return you to the MAIN MENU.
-
- :wait_key
- wait
- if key = 27 goto check_exit
- if key = 57 goto save_exit
- if key = 48 goto restart
- if key >= 49 if key <= 55 goto check_key
- goto wait_key
-
- :check_key
- if key = 55 goto ex_menu
- clear
- keyboard
-
- if key = 49 goto intro
- if key = 50 goto hkl
- if key = 51 goto ral
- if key = 52 goto rbl
- if key = 53 goto akl
- if key = 54 goto skl
-
- :intro
- script intro
- if key = 27 goto menu
-
- :hkl
- script homekeys
- if key = 27 goto menu
- if key = s goto save_exit
- if key = S goto save_exit
-
- :ral
- script keysup
- if key = 27 goto menu
- if key = s goto save_exit
- if key = S goto save_exit
-
- :rbl
- script keysdown
- if key = 27 goto menu
- if key = s goto save_exit
- if key = S goto save_exit
-
- :akl
- script allkeys
- if key = 27 goto menu
- if key = s goto save_exit
- if key = S goto save_exit
-
- :skl
- script symkeys
- if key = 27 goto menu
- if key = s goto save_exit
- if key = S goto save_exit
-
- goto menu
-
- :ex_menu
- memory 1 = 7
- memory 2 = 0
-
- :ex_menu_cont
- script ex_menu
- if key = s goto save_exit
- if key = S goto save_exit
- goto menu
-
- :check_exit
-
- clear
- cursor 18 10
- print 'Press S if you want to save your progress.
- cursor 10 13
- print 'Otherwise press any other key to return to the MAIN MENU.
- wait
- if key ! S if key ! s goto exit
-
- :save_exit
-
- save
-
- :exit